/* Simple Cart Widget Teal Theme - Minimal Changes */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* Add curved corners to main cart widget */
.cart-widget {
    border-radius: 16px !important;
    border: 2px solid rgba(46, 205, 182, 0.2) !important;
    overflow: hidden !important;
}

.cart-widget-inner {
    border-radius: 14px !important;
}

/* Add teal accent to product items */
.cart-widget-product {
    border-left: 4px solid #2ecdb6 !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
}

.cart-widget-product:hover {
    border-left-color: #34d399 !important;
    transform: translateX(2px) !important;
}

/* Style the main button with teal gradient */
.cart-widget-button .btn.btn-conversion {
    background: linear-gradient(135deg, #2ecdb6, #34d399) !important;
    border: none !important;
    color: #1e293b !important;
    font-family: 'Inter', Arial, sans-serif !important;
    font-weight: 800 !important;
    font-size: 16px !important;
    padding: 14px 24px !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(46, 205, 182, 0.25) !important;
    position: relative !important;
    overflow: hidden !important;
}

/* Button hover effect */
.cart-widget-button .btn.btn-conversion:hover {
    background: linear-gradient(135deg, #34d399, #2ecdb6) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(46, 205, 182, 0.35) !important;
}

/* Subtle shine effect */
.cart-widget-button .btn.btn-conversion::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent) !important;
    transition: left 0.6s !important;
}

.cart-widget-button .btn.btn-conversion:hover::before {
    left: 100% !important;
}

/* Style quantity controls with teal accents */
.quantity .increase,
.quantity .decrease {
    background: linear-gradient(135deg, #2ecdb6, #34d399) !important;
    border: none !important;
    color: #1e293b !important;
    font-weight: 800 !important;
    transition: all 0.2s ease !important;
}

.quantity .increase:hover,
.quantity .decrease:hover {
    background: linear-gradient(135deg, #34d399, #2ecdb6) !important;
    transform: scale(1.1) !important;
}

/* Style the price with teal color */
.cart-widget-product-price strong {
    color: #2ecdb6 !important;
    font-weight: 800 !important;
}

/* Add subtle styling to free shipping section */
.cart-free-shipping {
    border-radius: 8px !important;
}

/* Keep product images rounded */
.cart-widget-product-image img {
    border-radius: 8px !important;
}

/* Improve the remove button slightly */
.cart-widget-product-delete .remove-item {
    border-radius: 6px !important;
    transition: all 0.2s ease !important;
}

.cart-widget-product-delete .remove-item:hover {
    transform: scale(1.1) !important;
}